home *** CD-ROM | disk | FTP | other *** search
/ Champak 125 / Vol 125 (Damaged).iso / games / poux.swf / scripts / DefineButton2_31 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2008-11-13  |  217 b   |  14 lines

  1. on(release){
  2.    if(_root.playing == 1)
  3.    {
  4.       stopAllSounds();
  5.       loopSound.gotoAndStop("Stop");
  6.       playing = 0;
  7.    }
  8.    else
  9.    {
  10.       loopSound.gotoAndStop("Play");
  11.       playing = 1;
  12.    }
  13. }
  14.